home *** CD-ROM | disk | FTP | other *** search
/ DOpus Plus / DOpus Plus.iso / Tutorial / HTML / Scripts / Make_Assigns < prev    next >
Encoding:
Text File  |  1998-10-28  |  787 b   |  39 lines

  1. ;$ver 1.0 DOPlus CD setup Add assigns script for DOpusPLUS CD
  2.  
  3. ;*************************
  4. ; Setup assigns and paths
  5. ;
  6.  
  7. ; Echo "Now setting up assigns for the Amiga Format CD$cdnum..."
  8.  
  9. SetENV DOPlus_Assigns Yes!
  10. Assign Fonts:   DOPLUS:Fonts add
  11.  
  12.  
  13. ;BEGIN MUI
  14. assign >NIL: exists MUI:
  15. if warn
  16.   if exists "DOPLUS:Tools/MUI/"
  17.     SetENV DOPlus_MUI Yes!
  18.     assign MUI: "DOPLUS:Tools/MUI/"
  19.     if exists MUI:Libs
  20.             assign add LIBS: MUI:Libs
  21.     endif
  22.     if exists MUI:Locale
  23.       assign add LOCALE: MUI:Locale
  24.     endif
  25.     version >nil: exec.library 39
  26.     if not warn
  27.       if exists MUI:Docs
  28.         if exists HELP:dummy ; do not remove
  29.               endif                ; this entry!
  30.          assign add HELP: MUI:Docs
  31.       endif
  32.     endif
  33.   endif
  34. endif
  35.  
  36. ;END MUI
  37.  
  38. lab END
  39.